Server-side asynchronous execution of a view returning aggregated results to the caller client.
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Shared Function Exec( _
   ByVal  As System.String, _
   ByVal  As System.String, _
   ByVal  As System.Collections.Generic.Dictionary(Of String,Object), _
   ByVal  As System.Threading.CancellationToken, _
   ByVal  As ProgressDelegate _
) As System.Threading.Tasks.Task(Of Dictionary(Of Object(),Object()))
             
        
            
            public static System.Threading.Tasks.Task<Dictionary<object[],object[]>> Exec( 
   System.string ,
   System.string ,
   System.Collections.Generic.Dictionary<string,object> ,
   System.Threading.CancellationToken ,
   ProgressDelegate 
)
             
        
             
        
            パラメータ
- workspace
 
- Path in the server's file system where DataEngine data is saved in files.
 - table
 
- The name of the DataEngine table on which the view is based.
 - view
 
- View definition. It is obtained from a view in JSON format using System.Web.Script.Serialization.JavaScriptSerializer.Deserialize.
 - cancelToken
 
- Enables task cancellation.
 - progress
 
- Callback function to report progress updates.
 
            
            戻り値の型
View execution (aggregation) result
 
            
            
            
            
            
            
            
            
            
            
            
            参照